home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
BCI NET
/
BCI NET Dec 94.iso
/
archives
/
programming
/
source
/
propgadget.lha
/
PropGadget
/
clean2.inc
< prev
next >
Wrap
Text File
|
1989-11-30
|
296b
|
15 lines
extern struct IntuitionBase *IntuitionBase;
extern struct GfxBase *GfxBase;
void CleanUp(message)
FAST TEXT *message;
{
puts(message);
if (GfxBase !=NULL) CloseLibrary((struct Library *)GfxBase);
if (IntuitionBase!=NULL) CloseLibrary((struct Library *)IntuitionBase);
exit(TRUE);
}